home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / pyshared / PIL / TarIO.py < prev    next >
Text File  |  2006-12-03  |  1KB  |  58 lines

  1. #
  2. # The Python Imaging Library.
  3. # $Id: TarIO.py 2134 2004-10-06 08:55:20Z fredrik $
  4. #
  5. # read files from within a tar file
  6. #
  7. # History:
  8. # 95-06-18 fl   Created
  9. # 96-05-28 fl   Open files in binary mode
  10. #
  11. # Copyright (c) Secret Labs AB 1997.
  12. # Copyright (c) Fredrik Lundh 1995-96.
  13. #
  14. # See the README file for information on usage and redistribution.
  15. #
  16.  
  17. import ContainerIO
  18. import string
  19.  
  20. ##
  21. # A file object that provides read access to a given member of a TAR
  22. # file.
  23.  
  24. class TarIO(ContainerIO.ContainerIO):
  25.  
  26.     ##
  27.     # Create file object.
  28.     #
  29.     # @param tarfile Name of TAR file.
  30.     # @param file Name of member file.
  31.  
  32.     def __init__(self, tarfile, file):
  33.  
  34.         fh = open(tarfile, "rb")
  35.  
  36.         while 1:
  37.  
  38.             s = fh.read(512)
  39.             if len(s) != 512:
  40.                 raise IOError, "unexpected end of tar file"
  41.  
  42.             name = s[:100]
  43.             i = string.find(name, chr(0))
  44.             if i == 0:
  45.                 raise IOError, "cannot find subfile"
  46.             if i > 0:
  47.                 name = name[:i]
  48.  
  49.             size = string.atoi(s[124:136], 8)
  50.  
  51.             if file == name:
  52.                 break
  53.  
  54.             fh.seek((size + 511) & (~511), 1)
  55.  
  56.         # Open region
  57.         ContainerIO.ContainerIO.__init__(self, fh, fh.tell(), size)
  58.